Clover coverage report - bexee - 0.1
Coverage timestamp: Do Dez 16 2004 13:24:06 CET
file stats: LOC: 88   Methods: 11
NCLOC: 44   Classes: 1
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover
 
 Source file Conditionals Statements Methods TOTAL
ToImpl.java - 63.6% 63.6% 63.6%
coverage coverage
 1   
 /*
 2   
  * $Id: ToImpl.java,v 1.1 2004/12/15 14:18:12 patforna Exp $
 3   
  *
 4   
  * Copyright (c) 2004 Patric Fornasier, Pawel Kowalski
 5   
  * Berne University of Applied Sciences
 6   
  * School of Engineering and Information Technology
 7   
  * All rights reserved.
 8   
  */
 9   
 package bexee.model.elements.impl;
 10   
 
 11   
 import javax.xml.namespace.QName;
 12   
 
 13   
 import bexee.model.elements.PartnerLink;
 14   
 import bexee.model.elements.To;
 15   
 import bexee.model.elements.Variable;
 16   
 
 17   
 /**
 18   
  * Default implementation of the <code>To</code> BPEL element.
 19   
  * 
 20   
  * @version $Revision: 1.1 $, $Date: 2004/12/15 14:18:12 $
 21   
  * @author Patric Fornasier
 22   
  * @author Pawel Kowalski
 23   
  */
 24   
 public class ToImpl implements To {
 25   
 
 26   
     private Variable variable;
 27   
 
 28   
     private String part;
 29   
 
 30   
     private String query;
 31   
 
 32   
     private QName property;
 33   
 
 34   
     private PartnerLink partnerLink;
 35   
 
 36   
     //**************************************************/
 37   
     // c'tors
 38   
     //**************************************************/
 39   
 
 40  40
     public ToImpl() {
 41  40
         super();
 42   
     }
 43   
 
 44   
     //**************************************************/
 45   
     // bexee.model.elements.To
 46   
     //**************************************************/
 47   
 
 48  40
     public void setVariable(Variable variable) {
 49  40
         this.variable = variable;
 50   
     }
 51   
 
 52  6
     public Variable getVariable() {
 53  6
         return variable;
 54   
     }
 55   
 
 56  40
     public void setPart(String part) {
 57  40
         this.part = part;
 58   
     }
 59   
 
 60  6
     public String getPart() {
 61  6
         return part;
 62   
     }
 63   
 
 64  0
     public void setQuery(String query) {
 65  0
         this.query = query;
 66   
     }
 67   
 
 68  0
     public String getQuery() {
 69  0
         return query;
 70   
     }
 71   
 
 72  40
     public void setProperty(QName property) {
 73  40
         this.property = property;
 74   
     }
 75   
 
 76  0
     public QName getProperty() {
 77  0
         return property;
 78   
     }
 79   
 
 80  40
     public void setPartnerLink(PartnerLink partnerLink) {
 81  40
         this.partnerLink = partnerLink;
 82   
     }
 83   
 
 84  0
     public PartnerLink getPartnerLink() {
 85  0
         return partnerLink;
 86   
     }
 87   
 
 88   
 }